func golang.org/x/net/http2.streamError

25 uses

	golang.org/x/net/http2 (current package)
		errors.go#L82: func streamError(id uint32, code ErrCode) StreamError {
		frame.go#L1020: 		return nil, streamError(fh.StreamID, ErrCodeProtocol)
		frame.go#L1106: 		return nil, streamError(fh.StreamID, ErrCodeProtocol)
		server.go#L1235: 			sc.resetStream(streamError(st.id, ErrCodeNo))
		server.go#L1448: 				return sc.countError("data_flow", streamError(f.Header().StreamID, ErrCodeFlowControl))
		server.go#L1529: 			return sc.countError("bad_flow", streamError(f.StreamID, ErrCodeFlowControl))
		server.go#L1554: 		sc.closeStream(st, streamError(f.StreamID, f.ErrCode))
		server.go#L1735: 			return sc.countError("data_flow", streamError(id, ErrCodeFlowControl))
		server.go#L1743: 		return sc.countError("closed", streamError(id, ErrCodeStreamClosed))
		server.go#L1752: 			return sc.countError("data_flow", streamError(id, ErrCodeFlowControl))
		server.go#L1760: 		return sc.countError("send_too_much", streamError(id, ErrCodeProtocol))
		server.go#L1765: 			return sc.countError("flow_on_data_length", streamError(id, ErrCodeFlowControl))
		server.go#L1890: 			return sc.countError("headers_half_closed", streamError(id, ErrCodeStreamClosed))
		server.go#L1918: 			return sc.countError("over_max_streams", streamError(id, ErrCodeProtocol))
		server.go#L1925: 		return sc.countError("over_max_streams_race", streamError(id, ErrCodeRefusedStream))
		server.go#L2027: 		return sc.countError("trailers_not_ended", streamError(st.id, ErrCodeProtocol))
		server.go#L2031: 		return sc.countError("trailers_pseudo", streamError(st.id, ErrCodeProtocol))
		server.go#L2040: 				return sc.countError("trailers_bogus", streamError(st.id, ErrCodeProtocol))
		server.go#L2055: 		return sc.countError("priority", streamError(streamID, ErrCodeProtocol))
		server.go#L2083: 		return sc.countError("unparsable_priority_update", streamError(f.PrioritizedStreamID, ErrCodeProtocol))
		server.go#L2138: 		return nil, nil, sc.countError("bad_connect", streamError(f.StreamID, ErrCodeProtocol))
		server.go#L2144: 			return nil, nil, sc.countError("bad_connect", streamError(f.StreamID, ErrCodeProtocol))
		server.go#L2157: 		return nil, nil, sc.countError("bad_path_method", streamError(f.StreamID, ErrCodeProtocol))
		server.go#L2204: 		return nil, nil, sc.countError(res.InvalidReason, streamError(st.id, ErrCodeProtocol))
		transport.go#L2593: 	serr := streamError(cs.ID, f.ErrCode)